home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / kbd-patch / gestalt.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-22  |  578 b   |  23 lines  |  [TEXT/EMAC]

  1. /*
  2.  * Copyright (C) 1994 Marc Parmet.
  3.  * This file is part of the Macintosh port of GNU Emacs.
  4.  *
  5.  * GNU Emacs is distributed in the hope that it will be useful,
  6.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  7.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  8.  * GNU General Public License for more details.
  9.  */
  10.  
  11. #include <Types.h>
  12. #include <Memory.h>
  13. #include <Processes.h>
  14. #include <GestaltEqu.h>
  15. #include "kbd-patch-data.h"
  16.  
  17. pascal short
  18. emacs_kbd_gestalt_dispatch(OSType selector,long *response)
  19. {
  20.     *response = PATCH_MAGIC;
  21.     return noErr;
  22. }
  23.